home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ncacn_http.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  62 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10761);
  10.  script_version ("$Revision: 1.4 $");
  11.  name["english"] = "Detect CIS ports";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "This detects the CIS ports by connecting to the server and
  15. processing the buffer received.
  16.  
  17. CIS (COM+ Internet Services) are RPC over HTTP tunneling
  18. and requires IIS to operate.
  19. CIS ports shouldn't be visible on internet but only behind a firewall.
  20.  
  21. If you do not use this service, then disable it as it may become
  22. a security threat in the future, if a vulnerability is discovered.
  23.  
  24. Solution:
  25. Disable CIS with DCOMCNFG or protect CIS ports by a Firewall.
  26. http://support.microsoft.com/support/kb/articles/Q282/2/61.ASP
  27.  
  28. For more information about CIS:
  29. http://msdn.microsoft.com/library/en-us/dndcom/html/cis.asp
  30.  
  31. Risk factor : Low";
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Detect banner with ncacn_http";
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com");
  41.  family["english"] = "Windows";
  42.  script_family(english:family["english"]);
  43.  script_dependencie("find_service.nes");
  44.  script_require_ports("Services/ncacn_http");
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. port = get_kb_item("Services/ncacn_http");
  53. if (!port)exit(0);
  54.  
  55. key = string("ncacn_http/banner/", port);
  56. banner = get_kb_item(key);
  57. if(banner)
  58. {
  59.  data = string("There is a CIS (COM+ Internet Services) on this port\nServer banner :\n", banner);
  60.  security_warning(port:port, data:data);
  61. }
  62.